home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness: Dealing with Change / Workplace Effectiveness: Dealing with Change.iso / pc / Assess.Dxr / Internal_46_fix a string.ls < prev    next >
Encoding:
Text File  |  1998-04-24  |  470 b   |  14 lines

  1. on makeLowerCase pString
  2.   set LowerString to EMPTY
  3.   set offset to charToNum("a") - charToNum("A")
  4.   set CharCount to the number of chars in pString
  5.   repeat with index = 1 to CharCount
  6.     set Letter to char index of pString
  7.     if (charToNum(Letter) >= charToNum("A")) and (charToNum(Letter) <= charToNum("Z")) then
  8.       set Letter to numToChar(charToNum(Letter) + offset)
  9.     end if
  10.     set LowerString to LowerString & Letter
  11.   end repeat
  12.   return LowerString
  13. end
  14.